home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Bytes: Money & Finance
/
PowerBytes Money and Finance CD-ROM 01
/
PowerBytes Money and Finance CD-ROM 01.iso
/
Text
/
MEdit 1.5
/
RtoAsm.mcr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1986-04-18
|
284 b
|
18 lines
|
[
TEXT/MEDT
]
*
* this macro puts a $ in col 0 and moves to the next line
"Hex it/H" {
select(L.,0);
insert("$");
select(L.+1,0);
};
*
* this puts a ',' at the end of the current line, then removes the CR
"Add Hex/A" {
select(L.,C$);
insert(",");
find("\n");
cut;
}.